home *** CD-ROM | disk | FTP | other *** search
/ PC Open 103 / PC Open 103 CD 1.bin / CD1 / INTERNET / WEBDESIGN / Tsw WebCoder / tswwebcoder5en.exe / {app} / scripts / scriptcode / TSW PHP Scripts / phpmultilinecomment.tss < prev    next >
Encoding:
Text File  |  2003-09-22  |  239 b   |  15 lines

  1. {
  2. [Scriptsettings]
  3. Scriptname=PHP multiline comment
  4. ExecuteOnStartup=0
  5. ExecuteOnlyOnce=0
  6. }
  7. program PHPMultilineComment;
  8.  
  9. var
  10.  Code: string;
  11. begin
  12.  Code := '/*'+#13#10+Editor.SelText+#13#10+'*/';
  13.  Editor.SelText := Code;
  14. end;
  15.